home *** CD-ROM | disk | FTP | other *** search
/ Hyper Animation Series: Viper (Limited Edition) / Hyper Animation Series: VIPER (Limited Edition).iso / pc / SYSTEM / class / ColorItemIndex.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-04  |  709 b   |  27 lines

  1. class ColorItemIndex extends ItemIndex {
  2.    private int nMax;
  3.    private int nCount;
  4.  
  5.    public ColorItemIndex(Position var1, SpriteAnimeData var2, Position var3, int var4, ItemAction var5, int var6, int var7) {
  6.       super(var1, var2, var3, var4, var5);
  7.       this.nCount = var6;
  8.       this.nMax = var7;
  9.    }
  10.  
  11.    public void setCount(int var1) {
  12.       this.nCount = var1;
  13.    }
  14.  
  15.    public void setMax(int var1) {
  16.       this.nMax = var1;
  17.    }
  18.  
  19.    public int getCount() {
  20.       return this.nCount;
  21.    }
  22.  
  23.    public int getMax() {
  24.       return this.nMax;
  25.    }
  26. }
  27.